Passed
Pull Request — develop (#758)
by Kevin Van
08:39 queued 04:54
created

SearchPage   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 13
dl 0
loc 13
rs 10
c 0
b 0
f 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A render 0 11 1
1
import React, { Component } from "react"
2
3
import Search from "../components/search-container"
4
import SEO from "../components/seo"
5
import Layout from "../layouts/index"
6
7
class SearchPage extends Component {
8
  render() {
9
    return (
10
      <Layout>
11
        <SEO lang="nl-BE" title="Zoeken" description="Zoekpagina KCVV Elewijt" path={this.props.location.pathname} />
12
13
        <div className={`limited-width_wrapper`}>
14
          <h1>Zoeken</h1>
15
16
          <Search />
17
        </div>
18
      </Layout>
19
    )
20
  }
21
}
22
23
export default SearchPage
24